home *** CD-ROM | disk | FTP | other *** search
/ Jurassic Jigsaws / JURASSIC.BIN / jigsaw.dir / 00180_Script_get a clue < prev    next >
Text File  |  1996-09-13  |  679b  |  21 lines

  1. global gFlag, gCurrentPuzzleNum, gHintSprite
  2. on mouseDown
  3.   put the name of member (the memberNum of sprite the clickOn) into tempmember
  4.   repeat while the stillDown
  5.     set the memberNum of sprite gHintSprite = the number of member ("template" && gCurrentPuzzleNum)
  6.     repeat with x = 1 to 4
  7.       set the blend of sprite gHintSprite = (x * 10)
  8.       updateStage
  9.     end repeat
  10.   end repeat
  11.   startTimer
  12.   repeat while the timer < 90
  13.     nothing
  14.   end repeat
  15.   repeat with x = 4 down to 1
  16.     set the blend of sprite gHintSprite = (x * 10)
  17.     updateStage
  18.   end repeat
  19.   set the memberNum of sprite gHintSprite = the number of member "dot"
  20.   updatestage
  21. end